home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / pcc / v04n11 / batch1.exe / ADDPATH.BAT next >
Encoding:
DOS Batch File  |  1991-09-17  |  279 b   |  15 lines

  1. @ECHO OFF
  2. REM This is ADDPATH.BAT
  3. IF %1!==! GOTO OOPS
  4. PATH > \OLDPATH.BAT
  5. SET PATH=%PATH%;%1
  6. GOTO END
  7. :OOPS
  8. ECHO Enter the name of the
  9. ECHO subdirectory to add to
  10. ECHO your PATH after the %0
  11. ECHO.
  12. ECHO Type \OLDPATH to restore
  13. ECHO your original PATH setting.
  14. :END
  15.